home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_068 / mg1b / other_systems / readme next >
Text File  |  1992-05-06  |  2KB  |  53 lines

  1. The full MG distribution is about 800 K in size.  Since it's
  2. impractical to put all that data on an 880 diskette once you add
  3. icons, an Amiga MG executable, and so on, the support files for
  4. systems other than the Amiga were made into tar files and then
  5. compressed using the Unix compress(1) program.  This file contains
  6. some pointers on how to unpack them again.
  7.  
  8. The versions of compress and tarsplit in :c are taken from
  9. earlier Fish disks; if you want/need the sources, they're on
  10. disks somewhere in the range 49-52.  Uncompress is really a copy
  11. of compress.b14 from the aforementioned distribution; it's
  12. called uncompress here because it looks at its name to see what
  13. to do, and we want it to uncompress files.  I compressed the
  14. files sys.tar and tty.tar on a 4.3 BSD Unix system using the
  15. commands
  16.  
  17.     compress -b 14 sys.tar
  18.     compress -b 14 tty.tar
  19.  
  20. and no problem uncompressing them on my 512K Amiga with
  21. compress.b14 (renamed to uncompress).  256K Amiga owners may be
  22. out of luck.
  23.  
  24. The following commands are basically a log of what I did to
  25. unpack the compressed tar files on my system.  Your mileage may
  26. vary depending on road and weather conditions :-).  It assumes
  27. that mg1b: is in DF0:, and that you don't mind swapping disks to
  28. get to all the commands used.
  29.  
  30.     path add mg1b:c                ; for uncompress/tarsplit
  31.     format drive df1: name "OtherSystems"    ; format a new disk
  32.  
  33.     ; create and unpack the sys directory
  34.     makedir DF1:sys                ; make sys directory
  35.     copy MG1b:mg1b/sys/sys.tar.Z DF1:sys    ; copy tar file    
  36.     cd DF1:sys                ; go there
  37.     uncompress sys.tar.Z            ; uncompress it
  38.     tarsplit sys.tar            ; unpack it
  39.     delete sys.tar                
  40.  
  41.     ; similarly for the tty directory
  42.     makedir DF1:tty
  43.     copy MG1b:mg1b/tty/tty.tar.Z DF1:tty
  44.     cd DF1:tty
  45.     uncompress tty.tar.Z
  46.     tarsplit tty.tar
  47.     delete tty.tar
  48.  
  49. Have fun,
  50.  
  51. --mic--
  52.  
  53.